The London Perl and Raku Workshop takes place on 26th Oct 2024. If your company depends on Perl, please consider sponsoring and/or attending.
Changes 03
META.yml 12
Makefile.PL 02
lib/Software/License.pm 22
4 files changed (This is a version diff) 39
@@ -1,5 +1,8 @@
 Revision history for Software-License
 
+0.015     2010-03-26
+          up the Test::More prereq
+
 0.014     2010-03-23
           add meta_name to almost all remaining licenses, and add a test
 
@@ -4,6 +4,7 @@ author:
   - 'Ricardo Signes <rjbs@cpan.org>'
 build_requires:
   ExtUtils::MakeMaker: 6.42
+  Test::More: 0.88
 configure_requires:
   ExtUtils::MakeMaker: 6.42
 distribution_type: module
@@ -26,4 +27,4 @@ requires:
 resources:
   license: http://dev.perl.org/licenses/
   repository: http://github.com/rjbs/software-license
-version: 0.014
+version: 0.015
@@ -12,6 +12,8 @@ requires('Data::Section'       => '0.000'); # minimum unknown
 requires('Sub::Install'        => '0.000'); # minimum unknown
 requires('Text::Template'      => '0.000'); # minimum unknown
 
+build_requires('Test::More'    => '0.88'); # done_testing!
+
 extra_tests;
 
 repository('http://github.com/rjbs/software-license');
@@ -9,11 +9,11 @@ Software::License - packages that provide templated software licenses
 
 =head1 VERSION
 
-version 0.014
+version 0.015
 
 =cut
 
-our $VERSION = '0.014';
+our $VERSION = '0.015';
 
 use Data::Section -setup => { header_re => qr/\A__([^_]+)__\Z/ };
 use Sub::Install ();